home *** CD-ROM | disk | FTP | other *** search
/ IRIX 6.5 Applications 2004 May / SGI IRIX 6.5 Applications 2004 May.iso / dist / java3d.idb / usr / demos / java / j3d / programs / examples / Makefile.z / Makefile
Encoding:
Makefile  |  2003-08-08  |  1.0 KB  |  63 lines

  1. #
  2. #       @(#)Makefile 1.36 01/10/26 08:21:54
  3. #
  4. # Makefile to compile Java3D test programs
  5. #
  6. # variables that need values to build succesfully:
  7. #    CLASSPATH    The path for all imported Java Classes
  8.  
  9. .KEEP_STATE:
  10.  
  11. SUBDIRS = \
  12.     AlternateAppearance \
  13.     Appearance \
  14.     AppearanceMixed \
  15.     AWT_Interaction \
  16.     ConicWorld \
  17.     ConfiguredUniverse \
  18.     Background \
  19.     FPSCounter \
  20.     FourByFour \
  21.     GearTest \
  22.     GeometryCompression \
  23.     GeometryByReference \
  24.     HelloUniverse \
  25.     Lightwave \
  26.     LOD \
  27.     ModelClip \
  28.     Morphing \
  29.     ObjLoad \
  30.     OffScreenCanvas3D \
  31.     OrientedShape3D \
  32.     PackageInfo \
  33.     PickTest \
  34.     PickText3D \
  35.     PlatformGeometry \
  36.     PrintCanvas3D \
  37.     PureImmediate \
  38.     ReadRaster \
  39.     Sound \
  40.     SphereMotion \
  41.     SplineAnim \
  42.     Text2D \
  43.     Text3D \
  44.     TextureByReference \
  45.     TextureTest \
  46.     TickTockCollision \
  47.     TickTockPicking \
  48.     Timer \
  49.     VirtualInputDevice
  50.  
  51. SUBDIR_TARGETS = all clean clean-nuke
  52.  
  53. default-target: all
  54.  
  55. install:
  56.     @echo "install target is obsolete"
  57.  
  58. $(SUBDIR_TARGETS):
  59.     -@for i in $(SUBDIRS); do (                    \
  60.         echo "cd $$i; make $@";                    \
  61.         cd $$i ; make $@);                        \
  62.     done
  63.